9bfea13c783dbe25a590ac4452f0bf021afab17e,graphdb/src/main/java/com/tinkerpop/blueprints/impls/orient/OrientVertex.java,OrientVertex,getEdges,#OrientVertex#Direction#String#,1059
Before Change
OrientBaseGraph.encodeClassNames(iLabels);
final OMultiCollectionIterator<Edge> iterable = new OMultiCollectionIterator<Edge>().setEmbedded(true);
for (String fieldName : doc.fieldNames()) {
final OPair<Direction, String> connection = getConnection(iDirection, fieldName, iLabels);
if (connection == null)
// SKIP THIS FIELD
After Change
}
if (fieldNames == null)
fieldNames = doc.fieldNames();
for (String fieldName : fieldNames) {
final OPair<Direction, String> connection = getConnection(iDirection, fieldName, iLabels);